.cadastrar {
  margin-top: 10px !important;
  font-size: 100% !important;
  padding: 14px !important;
  color: white !important;
  background: #1e73be;
  border: none !important;
  border-radius: 0 !important;
  cursor: pointer;
}

.table-header {
  display: flex;
  justify-content: space-between;
  padding: 10px !important;
  border-bottom: 1px solid #e5e5e5 !important;
}

.projeto {
  margin-top: 10px !important;
  border-radius: 10px;
  border: 1px solid #e5e5e5 !important;
}

#projeto>tr>th>h6 {
  padding: 10px;
  color: #64686d;
  text-align: left;
  text-align: justify;
  text-justify: inter-word;
  margin-bottom: 0;
}

.green {
  color: green !important;
}

.disabled {
  border: 1px solid #999999;
  background-color: #cccccc;
  color: #666666;
  cursor: not-allowed;
}

.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  padding-top: 100px;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}

.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.sna_container_cadastrar {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 80%;
  box-shadow: var(--sna_sombra);
  border-radius: 10px;
  padding: 25px !important;
  margin-bottom: 150px;
  margin-top: 50px;
  overflow: auto;
}

@media (max-width: 768px) {
  .sna_container_cadastrar {
    width: 100%;
  }
}

.titulo_carta_oposicao {
  font-size: 20px;
  font-weight: bold;
}

.periodo_carta_oposicao {
  color: brown;
  font-style: italic;
  font-size: 14px;
}

.mensagem_status_carta {
  border: 2px dotted red;
  font-size: 24px;
  padding: 20px;
  border-radius: 10px;
  margin-top: 40px !important;
  margin-bottom: 40px !important;
  width: 90%;
  margin: 0 auto;
  text-align: center;
}

.botao_status_carta {
  width: 100%;
  background: var(--sna_azul);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 1pc;
  margin-top: 20px;
  cursor: pointer;
  text-transform: uppercase;
}

.conteudo_modal_doc_carta {
  width: 50%;
  height: 70%;
  position: absolute;
  top: 15%;
  left: 25%;
  z-index: 9999;
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
}

.img_doc_carta {
  height: 80%;
  margin: 0 auto;
  display: block;
  border-radius: 8px;
}


.sna-info-carta-wrapper {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.sna-info-carta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: #5c8eda;
  /* azul destaque */
  color: #fff !important;
  text-decoration: none;

  padding: 14px 22px;
  border-radius: 10px;

  font-size: 16px;
  font-weight: 600;

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  transition: all 0.25s ease;
}

.sna-info-carta-btn i {
  font-size: 20px;
}

.sna-info-carta-btn:hover {
  background: #5c8eda;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.sna-info-carta-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


@media (max-width: 768px) {
  .sna-info-carta-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 15px;
    padding: 14px;
  }
}



@media (max-width: 1024px) {

  .conteudo_modal_doc_carta {
    width: 90%;
    height: 60%;

    top: 20%;
    left: 5%;

  }

  .img_doc_carta {
    max-width: 100%;
    height: auto;

  }


}

@media (min-width: 1025px) and (max-width: 1524px) {

  .conteudo_modal_doc_carta {
    width: 70%;
    height: 60%;
    left: 15%;
    top: 20%;

  }

  .img_doc_carta {
    max-width: auto;
    height: 80%;

  }


}